home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Random2.0 / RandomHist / RandomEngine.m < prev    next >
Text File  |  1995-06-12  |  345b  |  33 lines

  1. //
  2. // RandomEngine
  3. //
  4. // Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
  5. //
  6.  
  7.  
  8. #import "RandomEngine.h"
  9.  
  10.  
  11. @implementation RandomEngine
  12.  
  13.  
  14. + (int)unit
  15. {
  16.     [self subclassResponsibility:_cmd];
  17.     
  18.     return 0;
  19. }
  20.  
  21.  
  22. - makeRandom:(uchar *)storage
  23. {
  24.     return [self subclassResponsibility:_cmd];
  25. }
  26.  
  27.  
  28. @end
  29.  
  30.  
  31. //
  32. // End of file.
  33. //